Hi Tom,
I'm trying to understand what to do to home my CNC router with brushless DC motors.
First, I suspect that the current position is used to determine when to commutate the motor. This suggests to me that there is a potential issue with exactly what is done when the limit switch is detected.
At startup, I plan to find the index pulse on the encoder first. Then, presumably, I can enable the axis and Jog at a slow speed toward the home/negative limit switch.
But once the home switch is detected, what should be done? If "Zero()" is called, it resets the Position and Destination for the axis, but won't that cause commutation to not work?
Does "EnableAxisDest(0,0.0f)" set Position or just Destination? In other words, does a call to "EnableAxisDest(0,0.0f);" cause the axis to move to the new destination if the current position does not match the destination set by "EnableAxisDest(0,0.0f);" ?
Finally, the plot thickens when moving the X axis gantry, because it is driven by two motors.
I presume that I should find the index pulse for each motor by moving both motors simultaneously, so that the gantry moves along its track driven on both sides.
I can find the index pulse for each motor, but they won't be at the exact same place as the gantry moves.
When one index pulse is found, I can set Position and Destination to be the same, for that motor only. Is this what I should do?
When the second index pulse is found, I can set Position and Destination to be zero for that motor.
Note that the Position and Destination won't be the same for the two axes. Is that OK, since one axis is slaved to the other?
Now both index pulses are found. Presumably, I can then set one axis to slave to the other, and Jog toward the home switch. But when I get there, I believe that I shouldn't Zero() the axes, because that will change the commutation of the motors. Is that correct?
Thanks for your help,
Hugh